v1.7.1 Release Notes
Zadig v1.7.1 was released on December 8, 2021.
# Feature List
- Authentication supports standardized OAuth2 extension development
- Build configuration supports custom resource specifications
- Several issue fixes in permission management module
- Several issue fixes in authentication and account modules
# Version Upgrade Process
Warning
If current system version < v1.7.0, please first upgrade to v1.7.0. For specific upgrade process, see v1.7.0 Upgrade Method, then follow the method below to upgrade to v1.7.1
# Database Backup
If already in production use, be sure to backup the database before upgrading
- Database backup commands:
- Backup MongoDB data
mongodump -h IP --port PORT -u USERNAME -p PASSWORD -d DATABASE -o FILE_PATH
- Backup MySQL data
mysqldump -h <HOST> -P <PORT> -u root -p user > user.sql
mysqldump -h <HOST> -P <PORT> -u root -p dex > dex.sql
2
- Database restore commands:
- Restore MongoDB data
mongorestore -h IP --port PORT -u USERNAME -p PASSWORD -d DATABASE --drop FILE_PATH
- Restore MySQL data
# Execute the following in MySQL:
mysql> drop database user;
mysql> create database user;
mysql> drop database dex;
mysql> create database dex;
# Execute the following data recovery operations from command line:
mysql -h <HOST> -P <PORT> -u root -p user < user.sql
mysql -h <HOST> -P <PORT> -u root -p dex < dex.sql
2
3
4
5
6
7
8
# Upgrade Operations
If installed using
All in One Installation ModeandInstallation on Existing Kubernetes, both use scripts fromInstallation on Existing KubernetesNew for upgrade. You need to re-export parameters before executing upgrade scripts.If installed using
Helm Command Installation, execute the following steps to upgrade to v1.7.1:- Get helm values from zadig environment by executing the following command.
helm get values <Release Name> -n <Zadig Namespace> > zadig.yaml1Check the zadig.yaml file. If the yaml contains image information, it needs to be manually deleted.
- Execute the following command to upgrade.
export NAMESPACE=<Zadig Installation NAMESPACE> helm repo update helm upgrade -f zadig.yaml <release_name> koderover-chart/zadig --namespace ${NAMESPACE} --version=1.7.11
2
3
4


